
/* Global Settings for Premium Feel */
/** {*/
/*    box-sizing: border-box;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    font-family: 'Poppins', sans-serif;*/
/*}*/

/*body {*/
/*    background-color: #F4F4F4;  !* Light Gray Background *!*/
/*    color: #333;*/
/*}*/

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2C3E50, #34495E);  /* Dark Blue Gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 700;
    color: #F1C40F;  /* Gold */
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.newsletter h2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: #F1C40F;  /* Gold underline */
    bottom: 0;
    left: 0;
    opacity: 0.5;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.newsletter h2:hover::after {
    transform: scaleX(1);
}

.form-subcriber input[type="email"] {
    width: 70%;
    padding: 18px 25px;
    border: 1px solid #BDC3C7;  /* Light Gray Border */
    border-radius: 50px;
    font-size: 18px;
    outline: none;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-subcriber input[type="email"]:focus {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

.form-subcriber button {
    padding: 18px 35px;
    background-color: #F1C40F;  /* Gold Button */
    color: #2C3E50;  /* Dark Blue Text */
    border: none;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.form-subcriber button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2C3E50;  /* Dark Blue Hover Background */
    border-radius: 50px;
    z-index: -1;
    transition: all 0.4s ease;
}

.form-subcriber button:hover {
    color: #fff;
    transform: translateY(-5px);
}

.form-subcriber button:hover::after {
    transform: scale(1.1);
}

/* Featured Section */
.featured .banner-left-icon {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured .banner-left-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    background-color: rgba(241, 196, 15, 0.1);  /* Light Gold Accent */
    top: 0;
    left: 0;
    border-radius: 12px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.featured .banner-left-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured .banner-left-icon:hover::before {
    transform: scaleX(1);
}

.featured .banner-left-icon .banner-icon img {
    max-width: 50px;
    transition: transform 0.3s ease;
}

.featured .banner-left-icon:hover .banner-icon img {
    transform: rotate(360deg);
}

.featured .banner-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C3E50;  /* Dark Blue for Titles */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured .banner-text p {
    font-size: 14px;
    color: #7F8C8D;  /* Light Gray Text */
}

/* Footer Section */
.footer-mid {
    background: #2C3E50;  /* Dark Blue Footer */
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-mid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: url('https://via.placeholder.com/1500x1500') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.footer-mid h4 {
    font-size: 22px;
    color: #F1C40F;  /* Gold */
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-mid .footer-list li {
    list-style-type: none;
    margin-bottom: 12px;
}

.footer-mid .footer-list li a {
    color: #BDC3C7;  /* Light Gray */
    text-decoration: none;
    font-size: 16px;
    transition: color 0.4s ease;
}

.footer-mid .footer-list li a:hover {
    color: #F39C12;  /* Light Gold on Hover */
    padding-left: 8px;
}

/* Footer Social Media */
.mobile-social-icon a {
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-social-icon a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.mobile-social-icon img {
    width: 35px;
    height: 35px;
}

/* Modal Styles */
.custom-modal .modal-dialog {
    max-width: 900px;
    margin: 30px auto;
    border-radius: 15px;
}

.custom-modal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.custom-modal .modal-header {
    background: linear-gradient(135deg, #2C3E50, #34495E);  /* Dark Blue Gradient */
    color: #fff;
    border-bottom: none;
}

.custom-modal .modal-header .btn-close {
    color: #fff;
    opacity: 0.6;
    font-size: 22px;
}

.custom-modal .modal-header .btn-close:hover {
    opacity: 1;
}

.custom-modal .modal-body {
    background-color: #fff;
    padding: 30px;
}

.custom-modal .modal-body .deal-top h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-modal .modal-body .deal .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-modal .modal-body .deal .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.custom-modal .modal-body .deal .card-header {
    background-color: #F1C40F;  /* Gold Card Header */
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    padding: 15px;
}

.custom-modal .modal-body .deal .card-body {
    padding: 20px;
}

.custom-modal .modal-body .deal .card-body a {
    color: #2C3E50;  /* Dark Blue for Links */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.custom-modal .modal-body .deal .card-body a::after {
    content: '»';
    margin-left: 10px;
    font-size: 18px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-modal .modal-body .deal .card-body a:hover {
    color: #F39C12;  /* Light Gold on Hover */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 2px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 16px;
    color: #BDC3C7;  /* Light Gray */
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter {
        padding: 60px 20px;
    }

    .form-subcriber input[type="email"] {
        width: 70%;
    }

    .footer-mid {
        padding: 50px 20px;
    }
}


/* Keep the original style but adjust text visibility */
.widget-about {
    color: #ffffff;  /* Ensure text color is white */
}

.widget-about .font-lg {
    color: #ecf0f1;  /* Lighter text color for better contrast */
}

.widget-about .contact-infor li strong {
    color: #f1c40f;  /* Gold color for labels to highlight them */
}

.widget-about .contact-infor li span {
    color: #ecf0f1;  /* Light gray text color */
}

/* Ensure icons remain visible */
.widget-about .contact-infor li img {
    filter: brightness(0) invert(1);  /* Make icons white for visibility */
}










/* General Styles */
header {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

header .header-top {
    background-color: #f1f1f1;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

header .header-middle {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}

header .header-middle .logo img {
    max-width: 180px;
}

header .header-middle .search-style-2 form {
    display: flex;
    align-items: center;
    width: 50%;
    max-width: 500px;
    position: relative;
}

header .header-middle .search-style-2 input,
header .header-middle .search-style-2 select {
    padding: 12px 20px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

header .header-middle .search-style-2 select {
    padding-left: 20px;
}

header .header-middle .search-style-2 input:focus,
header .header-middle .search-style-2 select:focus {
    border-color: #ff6f61;
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.6);
}

header .header-right .header-action-2 {
    display: flex;
    gap: 30px;
    align-items: center;
}

header .header-action-icon-2 {
    position: relative;
    cursor: pointer;
}

header .header-action-icon-2 img {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

header .header-action-icon-2:hover img {
    transform: scale(1.1);
}

header .header-action-icon-2 .pro-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff6f61;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 50%;
}

header .header-bottom {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header .header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

header .header-nav ul {
    display: flex;
    gap: 30px;
}

header .header-nav ul li {
    position: relative;
}

header .header-nav ul li a {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

header .header-nav ul li a:hover {
    color: #ff6f61;
}

header .header-nav ul li:hover .sub-menu {
    display: block;
}

header .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header .sub-menu li {
    padding: 10px 20px;
}

header .sub-menu li a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

header .sub-menu li a:hover {
    color: #ff6f61;
}

header .burger-icon {
    display: none;
    cursor: pointer;
}

header .burger-icon span {
    background-color: #333;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 992px) {
    header .header-middle {
        flex-direction: column;
        align-items: flex-start;
    }

    header .header-middle .search-style-2 {
        width: 100%;
        margin-top: 15px;
    }

    header .header-right {
        gap: 20px;
    }

    header .main-categori-wrap {
        display: none;
    }

    header .burger-icon {
        display: block;
    }

    header .header-nav {
        display: none;
        width: 100%;
    }

    header .header-nav.active {
        display: block;
        margin-top: 20px;
    }

    header .header-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header .header-action-icon-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    header .header-middle .logo img {
        max-width: 150px;
    }

    header .header-middle .search-style-2 input,
    header .header-middle .search-style-2 select {
        font-size: 13px;
    }

    header .header-action-icon-2 img {
        width: 20px;
        height: 20px;
    }
}

.banners {
    padding: 50px 0;
}

.banner-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.banner-img img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}

.banner-img:hover img {
    transform: scale(1.12);
    filter: brightness(0.8);
}

.banner-text {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.banner-text h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.banner-img:hover .banner-text {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.btn-xs {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 126, 95, 0.3);
    border: none;
}

.btn-xs:hover {
    background: linear-gradient(135deg, #ff6a4d, #fd9843);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 100, 70, 0.5);
}



/* === Global Styling for a Premium Feel === */
.home-slider {
    position: relative;
    overflow: hidden;
}

.single-hero-slider {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    transition: transform 1s ease-in-out;
}

.single-hero-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

/* === Stylish Slider Content === */
.slider-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 30px;
    backdrop-filter: blur(10px); /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1.5s ease-in-out;
}

/* === Premium Headings === */
.slider-content h1 {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(90deg, #ff9a9e, #fad0c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInDown 1.2s ease-in-out;
}

/* === Luxury Paragraph Styling === */
.slider-content p {
    font-size: 1.7rem;
    line-height: 1.8;
    opacity: 0.9;
    color: #ddd;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.8s ease-in-out;
}

/* === Button Styling for Premium Feel === */
.slider-content .btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 75, 43, 0.3);
    transition: 0.4s ease-in-out;
    border: none;
}

.slider-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 75, 43, 0.6);
}

/* === Parallax Animation on Slide Change === */
.single-hero-slider:hover {
    transform: scale(1.02);
}

/* === Smooth Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* === Custom Slider Arrows === */
.slider-arrow {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-arrow button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 15px 20px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.slider-arrow button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}








/* Overall styling for the mega-menu */
.mega-menu {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.mega-menu > li {
    list-style: none;
    position: relative;
    padding: 10px;
}

/* Title styling and hover effects */
.menu-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    transition: color 0.3s;
}

.menu-title:hover {
    color: #007bff;
}

/* Submenu styling */
ul {
    padding: 10px 20px;
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}

ul li a:hover {
    color: #007bff;
}

/* Styling for the banner */
.menu-banner-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.menu-banner-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.menu-banner-wrap img:hover {
    transform: scale(1.05);
}

.menu-banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-banner-content h4 {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}

.menu-banner-content h3 {
    font-size: 30px;
    margin: 10px 0;
}

.menu-banner-price {
    font-size: 18px;
    color: #ff6b6b;
    font-weight: bold;
}

.menu-banner-btn a {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu-banner-btn a:hover {
    background-color: #0056b3;
}

/* Discount box styling */
.menu-banner-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 10px;
    border-radius: 8px;
}

.menu-banner-discount h3 {
    font-size: 20px;
    margin: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Additional Responsiveness */
@media (max-width: 768px) {
    .mega-menu {
        flex-direction: column;
        align-items: center;
    }

    .menu-banner-wrap {
        width: 100%;
        height: auto;
    }
}
